/*!*****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/common/css/common.css ***!
  \*****************************************************************************/
/* body,
html,
img,
li,
p,
div,
span,
ul {
  font-family: "Microsoft YaHei", "微软雅黑", "Arial", "Open Sans",
    "Hiragino Sans GB", "STHeiti", "WenQuanYi Micro Hei", "SimSun", "sans-serif";
  padding: 0;
  margin: 0;
  list-style: none;
} */
.c-common-icon {
  background: url(./ce792874715b293987e9.png);
  display: inline-block;
}
.c-common-btn {
  display: inline-block;
  box-sizing: border-box;
}
.c-common-btn-light,
.c-common-btn-blue {
  box-sizing: border-box;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0 16px;
}
.c-common-large-btn {
  height: 40px;
  line-height: 40px;
}
.c-common-medium-btn {
  height: 32px;
  line-height: 32px;
}
.c-common-small-btn {
  height: 28px;
  line-height: 28px;
}
.c-common-mini-btn {
  height: 24px;
  line-height: 24px;
  font-size: 12px;
}
.c-common-btn-blue {
  background: #0076fe;
  color: #fff;
}
.c-common-btn-blue:hover {
  background: #3391fe;
}
.c-common-btn-blue.c-disabled-btn {
  cursor: not-allowed;
  background: #80bbff;
}
.c-common-btn-blue.c-disabled-btn:hover {
  cursor: not-allowed;
  background: #80bbff;
}
.c-common-input {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #eee;
  box-sizing: border-box;
  color: #333940;
  display: inline-block;
  font-size: inherit;
  height: 36px;
  line-height: 36px;
  outline: 0;
  padding: 0 15px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
}
.c-common-formItem {
  margin: 24px 0;
  width: 100%;
  text-align: left;
}
.c-common-formItem.is-error .c-common-input {
  border-color: #ff5556;
}
.c-common-input:hover {
  border-color: #c0c4cc;
}
.c-common-input:focus {
  border-color: #0076fe;
  outline: 0;
}
.c-common-formItem-label {
  display: inline-block;
  height: 18px;
  color: #333940;
  line-height: 16px;
  margin-right: 8px;
}
.c-common-formItem-content {
  display: inline-block;
  position: relative;
}
.c-common-formItem-error {
  color: #ff5556;
  font-size: 12px;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
}
.c-common-help-icon {
  width: 18px;
  height: 18px;
  background-position: -8px -159px;
  text-decoration: none;
  vertical-align: middle;
  margin-left: 4px;
}
.c-common-help-icon:hover {
  background-position: -35px -159px;
}
.common-loading-box {
  z-index: 1999;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.common-loading-box.full-screen-Loading {
  position: fixed;
}

.common-loading-tips {
  color: #0076fe;
  font-size: 12px;
}

.common-loading-centent {
  text-align: center;
}

.common-loading-circular {
  display: inline;
  height: 50px;
  width: 50px;
  animation: loading-rotate 1.4s linear infinite;
}

.common-loading-circular .common-loading-path {
  animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #0076fe;
  stroke-linecap: round;
}

@keyframes loading-rotate {
  to {
    transform: rotate(1turn);
  }
}

@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }

  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}
.c-common-popover {
  position: fixed;
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.09);
  min-width: 100px;
  text-align: center;
  z-index: 3000; /* 设置较高的 z-index 值 */
  box-sizing: border-box;
}
.c-common-popover .c-common-popover-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.c-common-popover .c-common-popover-arrow::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.c-common-popover .c-common-popover-arrow.bottom {
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #eee transparent;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
}
.c-common-popover .c-common-popover-arrow.bottom::after {
  position: absolute;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #fff transparent;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.c-common-popover .c-common-popover-arrow.top {
  border-width: 10px 10px 0 10px;
  border-color: #eee transparent transparent transparent;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.c-common-popover .c-common-popover-arrow.top::after {
  border-width: 8px 8px 0 8px;
  border-color: #fff transparent transparent transparent;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}

/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/createBook/css/createBook.css ***!
  \*************************************************************************************/
.common-dialog-content.c-createBook-dialog-content {
  background-image: url(./9fcd46e8ec7e835f1465.png);
  background-repeat: no-repeat;
}
.c-createBook-typeBox {
  color: #333940;
  margin-bottom: -8px;
}
.c-createBook-title {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.c-createBook-typeList {
  display: flex;
  justify-content: space-between;
  margin: 28px 40px 0px;
  flex-wrap: wrap;
}
.c-createBook-type-item {
  width: 206px;
  margin-bottom: 20px;
  height: 192px;
  border-radius: 8px;
  box-shadow: 0px 0px 6px 0px rgba(37, 79, 161, 0.1);
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  padding: 8px;
}
.c-createBook-type-item:hover {
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.09);
  outline: 1px solid #4db3ff;
}
.c-createBook-type-item:hover .c-createBook-type-btn {
  background: #3391fe;
}
.c-createBook-type-pic {
  height: 80px;
}
.c-createBook-type-btn {
  margin: 12px auto;
  width: 116px;
  cursor: pointer;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  border-radius: 4px;
  background: #0076fe;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}
.c-createBook-type-item .c-common-icon {
  width: 16px;
  height: 16px;
}

.c-createBook-icon-upload {
  background-position: -96px -253px;
}
.c-createBook-icon-picUpload {
  background-position: -40px -252px;
}
.c-createBook-icon-template {
  background-position: -68px -252px;
}
.c-createBook-icon-empty {
  background-position: -12px -252px;
}
.c-createBook-type-desc {
  font-size: 12px;
  color: #999;
  line-height: 18px;
}
.c-createBook-type-desc .c-createBook-black {
  color: #333;
}
.c-createBook-input-w,
.c-createBook-input-h {
  width: 118px;
  padding-right: 50px;
}
.c-createBook-lock {
  background-position: -8px -117px;
  width: 24px;
  height: 22px;
  vertical-align: middle;
  margin: 0 16px;
  cursor: pointer;
}
.c-createBook-lock:hover,
.is-active-lock .c-createBook-lock {
  background-position: -58px -117px;
}
.c-createBook-lock-tips {
  margin-left: 8px;
  color: #666;
  visibility: hidden;
}
.is-active-lock .c-createBook-lock-tips {
  visibility: visible;
}
.c-createBook-size-item {
  width: 132px;
  height: 166px;
  background: #f5f9ff;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
}
.c-createBook-size-item:hover {
  background: #eef7ff;
  outline: 2px solid rgba(0, 118, 254, 0.5);
}
.c-createBook-size-item.is-active-size {
  background: #eef7ff;
  outline: 2px solid #0076fe;
}
.c-createBook-sizeList {
  display: flex;
  justify-content: space-around;
  margin: 12px 0 24px;
}
.c-createBook-size-desc {
  font-size: 14px;
  font-weight: bold;
  color: #333940;
  padding: 20px 0 8px;
}
.c-createBook-size-info {
  font-size: 14px;
  color: #666666;
}
.c-createBook-size-icon {
  margin-top: 42px;
  height: 38px;
}
.c-createBook-input-size {
  position: relative;
  display: inline-block;
}
.c-createBook-input-size:after {
  content: "px";
  color: #999;
  font-size: 14px;
  position: absolute;
  right: 18px;
  top: 8px;
}
.c-createBook-bottom {
  text-align: right;
}
.c-createBook-submit-btn {
  margin-right: 10px;
  width: 80px;
}
.c-createBook-empty input::-webkit-outer-spin-button,
.c-createBook-empty input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}
.c-createBook-empty input[type="number"] {
  -moz-appearance: textfield;
}
.c-createBook-guide-box {
  width: 212px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  background: #eaf0ff;
  border-radius: 24px;
  color: #7078bb;
  font-size: 12px;
  cursor: pointer;
  box-sizing: border-box;
  margin: 8px auto 0;
}
.c-createBook-guide-box:hover {
  background: #dde4f5;
}
.c-createBook-guide-box > span {
  display: inline-block;
  vertical-align: middle;
  line-height: 16px;
}
.c-createBook-guide-play-btn {
  width: 20px;
  margin-right: 8px;
}
.c-createBook-guide-arrow {
  font-weight: bold;
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
}
.size-px-tip-popover.c-common-popover {
  border: 1px solid #7fbafe;
  border-radius: 4px;
  font-size: 12px;
}
.size-px-tip-popover.c-common-popover .c-common-popover-arrow.top {
  border-color: #7fbafe transparent transparent transparent;
}

/*!*****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/common/css/dialog.css ***!
  \*****************************************************************************/
.common-dialog {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2000;
  top: 0;
  left: 0;
  box-sizing: border-box;
  text-align: left;
}
.common-dialog-mask {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
  /* z-index: 2000; */
  top: 0;
  left: 0;
}
.common-dialog-table {
  display: table;
  width: 100%;
  height: 100%;
}
.common-dialog-table-cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.common-dialog-content {
  background: #fff;
  position: relative;
  border-radius: 4px;
  margin: 0 auto;
}
.common-dialog-head {
  /* height: 68px; */
  padding: 20px 32px 0px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  min-height: 42px;
}
.common-dialog-title {
  font-size: 18px;
  font-weight: 600;
}
.common-dialog-close {
  position: absolute;
  width: 30px;
  height: 30px;
  background-position: -59px -152px;
  right: 16px;
  top: 16px;
  cursor: pointer;
}
.common-dialog-close:hover {
  background-position: -92px -152px;
}
.common-dialog-body{
  padding: 0 32px 32px;
}
/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/createBook/css/videoGuide.css ***!
  \*************************************************************************************/
.c-video-guide-box {
  width: 982px;
  height: 552px;
  border-radius: 8px;
  position: relative;
}
.c-video-guide-video {
  width: 100%;
  height: 100%;
  background: #000;
}
.c-video-guide-iconclose {
  position: absolute;
  right: -40px;
  top: 0px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-position: -148px -12px;
}
.c-video-guide-createBtn {
  box-sizing: border-box;
  position: absolute;
  bottom: -102px;
  left: calc(50% - 133px);
  width: 266px;
  text-align: center;
  height: 70px;
  line-height: 70px;
  border-radius: 36px;
  border: 2px solid #ffffff;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.c-common-icon-guideArrow {
  width: 22px;
  height: 16px;
  background-position: -199px -20px;
  margin-left: 10px;
}
.c-video-guide-createtext,
.c-common-icon-guideArrow {
  display: inline-block;
  /* vertical-align: middle; */
}
.c-video-guide-cover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  width: 100%;
}

/*!******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/common/css/popover.css ***!
  \******************************************************************************/

/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/powerLimit/css/powerLimit.css ***!
  \*************************************************************************************/
._powerlimit_dialog {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2999;
  top: 0;
  left: 0;
  display: none;
}

._powerlimit_dialog.show {
  visibility: visible;
}

._powerlimit_dialog ._powerlimit_dialog_bg {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

._powerlimit_dialog-table {
  display: table;
  width: 100%;
  height: 100%;
}

._powerlimit_dialog_table_cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

._powerlimit_dialog_content {
  position: relative;
  padding: 32px;
  width: max-content;
  min-width: 288px;
  border: 3px solid #eabb6a;
  background: linear-gradient(322deg, #141211 0%, #332e2c 100%);
  opacity: 1;
  border-radius: 10px;
  margin: 0 auto;
}
._powerlimit_title1,
._powerlimit_title2 {
  font-size: 24px;
  font-weight: 600;
  color: #fff0d5;
  line-height: 32px;
}
._powerlimit_dialog_content ._powerlimit_vip_type,
._powerlimit_power_desc {
  color: #efc26b;
}
._powerlimit_dialog_content ._powerlimit_title2 ._powerlimit_vip_type {
  color: #fff0d5;
}
._powerlimit_bottom_power_desc {
  color: #fff0d5cc;
  font-size: 12px;
  padding-top: 15px;
}
._powerlimit_upgrade_btn {
  display: block;
  width: 196px;
  height: 46px;
  background: linear-gradient(323deg, #dea63c 0%, #ffd88e 100%);
  border-radius: 6px;
  color: #323232;
  line-height: 46px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  margin: 24px auto 0px;
  position: relative;
  cursor: pointer;
}
._powerlimit_upgrade_btn:hover {
  background: linear-gradient(323deg, #f7b130 0%, #fddea5 100%);
}
._powerlimit_day_price {
  position: absolute;
  top: -10px;
  right: 0px;
  background: linear-gradient(338deg, #ff0000 0%, #fb9d9d 100%);
  height: 20px;
  color: #fff;
  line-height: 20px;
  padding: 0 6px;
  font-size: 12px;
  border-radius: 11px 11px 0px 11px;
}
._powerlimit_close_btn {
  width: 24px;
  height: 24px;
  background-color: #dddddd;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  left: calc(50% - 12px);
  bottom: -36px;
  background-position: -94px -120px;
}
._powerlimit_close_btn:hover {
  background-color: rgb(241, 240, 240);
}
._powerlimit_exceed_Desc {
  margin-top: -12px;
  margin-bottom: 18px;
  font-weight: bold;
  font-size: 18px;
  color: #fff0d5;
}
._powerlimit_service_link {
  display: inline-block;
  position: relative;
  color: #0076fe;
}
._powerlimit_service_link:hover ._powerlimit_service_qrcode {
  visibility: visible;
}
._powerlimit_service_qrcode {
  position: absolute;
  visibility: hidden;
  bottom: 22px;
  left: -20px;
  padding: 8px;
  background: #fff;
  border: 1px solid #eaeaea;
}
._powerlimit_service_qrcode img {
  width: 130px;
}
._powerlimit_bottom_freevip_link {
  color: #fff0d5cc;
  font-size: 12px;
  padding-top: 15px;
  display: block;
  text-decoration: none;
}
._powerlimit_bottom_freevip_link:hover {
  color: #fff;
  text-decoration: underline;
}

/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/compareVip/css/compareVip.css ***!
  \*************************************************************************************/
/* 新旧会员对比弹窗 */

.c-compareVip-body {
  margin-top: 28px;
}

.c-compareVip-contrast-sheet {
  box-shadow: 0px 4px 8px 1px rgba(36, 21, 6, 0.04);
  border-radius: 2px;
  overflow: hidden;
}

.c-compareVip-contrast-sheet ul {
  display: flex;
  font-size: 0;
  padding: 0;
}

.c-compareVip-contrast-sheet ul > li {
  display: inline-block;
  height: 48px;
  width: 198px;
  font-size: 14px;
  color: #333940;
  text-align: center;
  line-height: 48px;
}

.c-compareVip-contrast-sheet ul > li > div {
  color: #333940;
  font-size: 14px;
}

.c-compareVip-contrast-sheet ul > li:nth-child(1) {
  width: 120px;
  background-color: #ffffff;
}

.c-compareVip-contrast-sheet ul > li:nth-child(2) {
  background-color: #f5f5f5;
}

.c-compareVip-contrast-sheet ul > li:nth-child(3) {
  background-color: #fff9ed;
}

.c-compareVip-contrast-sheet ul > li:nth-child(4) {
  background-color: #fff9ed;
}

.c-compareVip-contrast-sheet ul > li:nth-child(5) {
  background-color: #ffeac0;
}

.c-compareVip-contrast-sheet ul > li img {
  margin: 0 13px;
}

/* 权益升级 */
.c-compareVip-contrast-sheet > .c-compareVip-power-update > li {
  height: 92px;
  line-height: 1;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(1) {
  line-height: 92px;
  background-color: #f8f5f3;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(2) {
  background-color: #edebe9;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(3) {
  background-color: #f9f1e1;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(4) {
  background-color: #ffefd0;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(5) {
  background-color: #f8dda9;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li span {
  display: block;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li span:nth-child(1) {
  color: #3c2003;
  margin: 12px 0 17px;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(5) > span {
  line-height: 16px;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(5) > span:nth-child(1) {
  margin: 12px 0 9px;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(5) > span:nth-child(2) {
  margin-bottom: 5px;
}

/* c-compareVip-qa */
.c-compareVip-qa {
  margin-top: 28px;
  font-size: 0;
}

.c-compareVip-qa-title {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
  color: #333940;
  font-weight: 700;
  text-align: left;
}

.c-compareVip-qa-item-outer {
  display: flex;
  justify-content: space-between;
}

.c-compareVip-qa-item {
  display: inline-block;
  position: relative;
  padding: 20px 16px;
  width: 208px;
  height: 190px;
  background: #f5f5f5;
  border-radius: 8px;
  box-sizing: border-box;
}

.c-compareVip-qa-item > span {
  display: block;
  color: #333940;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
}

.c-compareVip-qa-item > span:nth-of-type(1) {
  margin-bottom: 24px;
}

.c-compareVip-qa-item > .c-compareVip-qa-item-button {
  display: block;
  width: 104px;
  height: 30px;
  margin: 24px auto 0;
  font-size: 12px;
  color: #3c2003;
  line-height: 30px;
  background: linear-gradient(135deg, #fdedca 0%, #e9c383 100%);
  border: 1px solid #f9e4ba;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}

.c-compareVip-qa-item > .c-compareVip-qa-item-button:hover {
  background: linear-gradient(135deg, rgba(253, 237, 202, 0.8) 0%, rgba(233, 195, 131, 0.8) 100%);
}

/* 底部的两个按钮 */
.c-compareVip-footer {
  margin-top: 45px;
  font-size: 0;
  text-align: right;
}

.c-compareVip-footer > a {
  text-decoration: none;
}

.c-compareVip-footer-button {
  display: inline-block;
  width: 92px;
  height: 36px;
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  line-height: 36px;
  cursor: pointer;
}

.c-compareVip-footer > a:nth-child(1) {
  margin-right: 5px;
  border: 1px solid #0076fe;
  color: #0076fe;
  background-color: #ffffff;
}

.c-compareVip-footer > a:nth-child(1):hover {
  background-color: #e6f1ff;
  color: #0076fe;
}

.c-compareVip-footer > a:nth-child(2) {
  margin-left: 5px;
  border: 1px solid #0076fe;
  color: #ffffff;
  background-color: #0076fe;
}

.c-compareVip-footer > a:nth-child(2):hover {
  background-color: #3391fe;
  color: #ffffff;
}
/*!***************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/activePanel/css/activePanel.css ***!
  \***************************************************************************************/
#cm_activePop {
  z-index: 4000;
  position: fixed;
  cursor: pointer;
}
.cm_canvasClass {
  position: fixed;
  top: 0;
  left: 0;
}

#cm_active_mask {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2999;
}
#cm_activeBg{
  height: auto;
  width: auto;
}
.cm_left_bottom_activePop {
  bottom: 10px;
  right: 100px;
  height: 140px;
  width: 300px;
  border-radius: 4px;
  overflow: hidden;
}
.cm_left_bottom_activePop > #cm_activeBg{
  width: 100%;
}
#cm_icon {
  /* position: absolute; */
  /* top: 0;
  right: 0; */
  /* height: 22px;
  width: 21px; */
}
.cm_left_bottom_closeIcon {
  position: absolute;
  top: 0;
  right: 0;
  height: 22px;
  width: 21px;
  background-position: -125px -120px;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 0 4px 0 20px;
}

.cm_tOut {
  animation: cm_zoomOut 0.35s;
  animation-fill-mode: forwards;
}

.cm_tIn {
  animation: cm_zoomIn 0.35s;
  animation-fill-mode: forwards;
}

@keyframes cm_zoomOut {
  from {
    opacity: 0;
    /* transform: translate(150px, -50px) scale(0.1, 0.2); */
    transform: translate(150px, 0) scale(0.1, 0.2);
  }

  to {
    transform: scale(1, 1);
  }
}

@keyframes cm_zoomIn {
  from {
    transform: scale(1, 1);
  }

  to {
    /* transform: translate(150px, -50px) scale(0.05, 0.1); */
    transform: translate(150px, 0) scale(0.05, 0.1);
    transform-origin: 60% 50%;
    opacity: 0.2;
  }
}

.cm_sUp {
  animation: cm_slideContentUp 0.35s;
  animation-fill-mode: forwards;
}

.cm_sDown {
  animation: cm_slideContentDown 0.35s;
  animation-fill-mode: forwards;
}

@keyframes cm_slideContentUp {
  from {
    height: 0;
    transform: scale(0.1, 0.2);
  }

  to {
    height: 140px;
    transform: scale(1, 1);
  }
}

@keyframes cm_slideContentDown {
  from {
    height: 140px;
    transform: scale(1, 1);
  }

  to {
    opacity: 0;
    height: 0;
    transform: scale(0.1, 0.1);
  }
}
.cm_activePop_centerBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.cm_center_middle_activePop {
  z-index: 3001;
  position: fixed;
  cursor: pointer;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.cm_center_middle_closeIcon {
  opacity: 1;
  height: 40px;
  width: 40px;
  background-position: -117px -112px;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  margin-top: 30px;
}

/*!*********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/activityDialog/css/activityDialog.css ***!
  \*********************************************************************************************/
.c-activity-dialog {
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  padding-top: 36px;
}
.c-adialog-headBg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.c-adialog-title {
  position: relative;
  font-size: 22px;
  height: 30px;
  line-height: 30px;
}
.c-adialog-headBg img {
  width: 100%;
}
.c-common-icon.c-adialog-vip {
  vertical-align: middle;
  width: 28px;
  height: 25px;
  background-position: -247px -154px;
}
.c-adialog-title-bold {
  vertical-align: middle;
  font-weight: bold;
  color: #4a2b06;
}
.c-adialog-title-text {
  vertical-align: middle;
  color: #9c6615;
}

.c-adialog-qrcodeBox {
  position: relative;
  padding-bottom: 28px;
}
.c-adialog-qrcode {
  display: inline-block;
  width: 170px;
  background: #fff;
  box-shadow: 0px 4px 17px 0px rgba(4, 80, 168, 0.15);
  border-radius: 10px;
  border: 1px solid #0076fe;
  font-size: 0px;
  overflow: hidden;
  margin: 26px auto 12px;
}
.c-adialog-qrcode img {
  width: 100%;
}
.c-adialog-title-redText {
  color: #f86d41;
}
.c-adialog-qrcode-desc {
  color: #999999;
  font-size: 14px;
}
.c-adialog-privilege-head {
  padding-bottom: 12px;
}
.c-adialog-privilege-devide {
  display: inline-block;
  width: 70px;
  opacity: 1;
  border: 1px solid;
  vertical-align: middle;
}
.c-adialog-privilege-devide.c-left-devide {
  border-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0),
      rgba(204, 144, 59, 1)
    )
    1 1;
}
.c-adialog-privilege-devide.c-right-devide {
  border-image: linear-gradient(
      90deg,
      rgba(204, 144, 59, 1),
      rgba(255, 255, 255, 0)
    )
    1 1;
}
.c-adialog-privilege-title {
  font-size: 14px;
  font-weight: bold;
  color: #4a2b06;
  margin: 0 12px;
}
.c-adialog-privilege-item {
  display: inline-block;
  width: 84px;
  text-align: center;
  margin: 0 20px 20px;
}
.c-adialog-privilege-label {
  font-size: 12px;
  color: #333940;
}
.c-adialog-privilege-list {
  padding-bottom: 4px;
}
a.c-adialog-privilege-item {
  text-decoration: none;
}
a.c-adialog-privilege-item:hover .c-adialog-privilege-label {
  text-decoration: underline;
}
.c-adialog-privilege-item .c-adialog-privilege-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
}
.c-adialog-privilege-noAd .c-adialog-privilege-icon {
  background-position: -168px -114px;
}
.c-adialog-privilege-setLogo .c-adialog-privilege-icon {
  background-position: -207px -114px;
}
.c-adialog-privilege-addMusic .c-adialog-privilege-icon {
  background-position: -249px -114px;
}
.c-adialog-privilege-template .c-adialog-privilege-icon {
  background-position: -128px -154px;
}
.c-adialog-privilege-statistic .c-adialog-privilege-icon {
  background-position: -167px -154px;
}
.c-adialog-privilege-more .c-adialog-privilege-icon {
  background-position: -209px -154px;
}
.c-adialog-close-icon {
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  left: calc(50% - 15px);
  bottom: -54px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-position: -148px -12px;
}

/*!*****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/buyMicroPage/css/buyMicroPage.css ***!
  \*****************************************************************************************/
.c-buyMicroPage-body {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.c-buyMicroPage-power-body {
  background-color: rgb(35, 35, 35);
  background-image: url(./f4da232adc88a1d998b1.svg);
  background-repeat: no-repeat;
  width: 260px;
  border-radius: 0px;
  padding: 32px 24px 16px;
  box-sizing: border-box;
}
.c-buyMicroPage-buy-body {
  width: 540px;
}
.c-buyMicroPage-icon {
  background: url(./f9baa46ae58508863d3b.png);
  display: inline-block;
  vertical-align: middle;
}
.c-buyMicroPage-icon-vip {
  width: 36px;
  height: 36px;
  background-position: -2px -4px;
}
.c-buyMicroPage-power-title {
  color: #04bdb2;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: normal;
}
.c-buyMicroPage-power-tips {
  margin-top: 4px;
  color: #66908b;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
}
.c-buyMicroPage-power-morebtn {
  display: flex;
  border-radius: 4px;
  background: rgba(4, 189, 178, 0.1);
  width: 178px;
  height: 28px;
  line-height: 28px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: rgba(122, 255, 247, 0.6);
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  margin: auto;
}
.c-buyMicroPage-power-morebtn:hover {
  background: rgba(4, 234, 220, 0.1);
}
.c-buyMicroPage-icon-right-arrow.c-buyMicroPage-icon {
  width: 6px;
  height: 8px;
  background-position: -304px -14px;
}
.c-buyMicroPage-power-list {
  text-align: left;
  margin-top: 20px;
}
.c-buyMicroPage-power-cate {
  margin-bottom: 16px;
}
.c-buyMicroPage-power-cate-title {
  color: #edf3f2;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
}
.c-buyMicroPage-power-item {
  color: #b2b2b2;
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.c-buyMicroPage-power-item .c-buyMicroPage-icon {
  width: 14px;
  height: 14px;
  margin-right: 8px;
}
.c-buyMicroPage-icon.c-buyMicroPage-icon-correct {
  background-position: -242px -13px;
}
.c-buyMicroPage-icon.c-buyMicroPage-icon-false {
  background-position: -272px -10px;
}

/* 右侧价格面板 */
.c-buyMicroPage-buy-body {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%), #fff;
}

/* 头部会员栏 */
.c-buyMicroPage-icon.c-buyMicroPage-icon-close {
  position: absolute;
  cursor: pointer;
  right: 16px;
  top: 12px;
  width: 24px;
  height: 24px;
  background-position: -208px -6px;
}
.c-buyMicroPage-qrcode-trigger {
  color: #0076fe;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  padding-left: 8px;
}
.c-buyMicroPage-pop-qrcode {
  width: 124px;
  height: 124px;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid rgba(0, 118, 254, 0.9);
  background: #fff;
  margin: 22px auto;
}
.c-buyMicroPage-user-bar {
  height: 48px;
  display: flex;
  justify-content: left;
  align-items: center;
  background-color: #f5f7f9;
  background-image: url(./23779ec40c722f017a9f.svg);
  background-repeat: no-repeat;
  background-position-x: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}
.c-buyMicroPage-user-infos {
  height: 48px;
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 12px;
}
.c-buyMicroPage-user-infos.c-buyMicroPage-user-login {
  cursor: pointer;
}
.c-buyMicroPage-uName {
  color: #1d2129;
  max-width: 66px;
  white-space: nowrap; /* 防止换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  margin-right: 6px;
}
.c-buyMicroPage-avatar {
  width: 24px;
  height: 24px;
  border: 1px solid #f4f4f4;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 4px;
  border-radius: 50%;
}
.c-buyMicroPage-utype-tip {
  color: #999;
}
.c-buyMicroPage-devide {
  height: 14px;
  display: inline-block;
  width: 1px;
  background-color: #999;
  vertical-align: middle;
  margin: 0 6px;
}
.c-buyMicroPage-iframe-box {
  display: block;
  z-index: 2099;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.c-buyMicroPage-iframe-box .c-buyMicroPage-iframe {
  width: 100%;
  height: 100%;
}

/* 会员列表 */
.c-buyMicroPage-vip-list {
  display: flex;
  gap: 21px;
}
.c-buyMicroPage-vip-item {
  cursor: pointer;
  display: flex;
  width: 150px;
  height: 147px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  outline: 1px solid #f1f1f1;
  background: #fff;
  box-shadow: 0px 0px 16px 1px rgba(10, 46, 33, 0.04);
  position: relative;
}
.c-buyMicroPage-vip-item-disabled {
  /* cursor: default;
  opacity: 0.7; */
  display: none;
}
.c-buyMicroPage-vip-item:not(.c-buyMicroPage-vip-item-disabled):hover {
  background: #f0fbfa;
}
.c-buyMicroPage-vip-item.c-buyMicroPage-vip-item-active {
  outline: 2px solid #04bdb2;
  background: linear-gradient(0deg, #f0fbfa 0%, #f0fbfa 100%), #fff;
  box-shadow: 0px 0px 16px 1px rgba(10, 46, 33, 0.12);
}
.c-buyMicroPage-icon-checked {
  position: absolute;
  visibility: hidden;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 28px;
  background-position: -169px -4px;
}
.c-buyMicroPage-vip-item-active .c-buyMicroPage-vip-tag {
  left: -2px;
}
.c-buyMicroPage-vip-item-active .c-buyMicroPage-icon-checked {
  visibility: visible;
}
.c-buyMicroPage-vip-content {
  text-align: center;
}
.c-buyMicroPag-vip-name {
  color: #3b3e3e;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.c-buyMicroPag-vip-price {
  color: #1d2129;
  font-size: 12px;
  font-weight: 700;
}
.c-buyMicroPag-vip-originPrice {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  text-decoration: line-through;
  padding-bottom: 4px;
}
.c-buyMicroPag-vip-amount {
  font-family: DINOT;
  font-size: 40px;
  line-height: normal;
}
.c-buyMicroPag-vip-unit {
  font-weight: 400;
}
.c-buyMicroPage-buy-main {
  position: relative;
  box-sizing: border-box;
  padding: 46px 24px 24px;
}
.c-buyMicroPage-618-tag {
  position: absolute;
  right: 0;
  top: 0;
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.c-buyMicroPage-loading-gif {
  animation: rotate360 0.5s linear infinite;
  width: 36px;
  height: 36px;
}
.c-buyMicroPage-isLoading .c-buyMicroPage-loading-box {
  visibility: visible;
}
.c-buyMicroPage-loading-box {
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
}
.c-buyMicroPag-vip-time {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.c-buyMicroPage-vip-tag {
  position: absolute;
  left: -1px;
  top: -12px;
  width: 44px;
  height: 24px;
}
/* 功能图文介绍 */
.c-buyMicroPage-vip-fun {
  margin-top: 16px;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  padding: 24px 12px;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  color: #5d7c7c;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}
.c-buyMicroPage-fun-icon {
  margin-bottom: 8px;
}
.c-buyMicroPage-fun-icon img {
  width: 44px;
  height: 44px;
}

.c-buyMicroPage-pay-box {
  margin-top: 18px;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  padding: 40px 0px;
  /* justify-content: center; */
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  background-color: #fff;
  padding-left: 84px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.c-buyMicroPage-pay-618tag {
  position: absolute;
  left: 0;
  right: 0;
  height: 22px;
  line-height: 22px;
  text-align: center;
  top: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  /* background: linear-gradient(174.5deg, #ffc85f -55.29%, #f9954d 53.91%); */
  background: linear-gradient(117.52deg, #8854F8 21.82%, #6330CE 57.66%);
}
.c-buyMicroPage-pay-tips {
  font-size: 12px;
  color: #999;
  margin-bottom: 6px;
  text-align: left;
}
.c-buyMicroPage-pay-code {
  width: 100%;
  height: 100%;
}
.c-buyMicroPage-pay-qrcode {
  width: 140px;
  height: 140px;
  border: 1px solid #ececec;
  background-color: #bdbdbd;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-buyMicroPage-pay-right {
  position: relative;
  text-align: left;
}
.c-buyMicroPage-payqr-arrow {
  position: absolute;
  top: -40px;
  left: -17px;
  width: 40px;
  height: 32px;
  background-position: -301px -54px;
}
.c-buyMicroPage-payqr-title {
  color: #3b3e3e;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 3px;
}
.c-buyMicroPage-payqr-subtitle {
  text-align: left;
  color: rgba(93, 124, 124, 0.8);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.c-buyMicroPage-pay-type {
  color: #999;
  font-size: 12px;
  line-height: normal;
  margin: 4px 0px;
}
.c-buyMicroPage-pay-type img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  vertical-align: middle;
}
.c-buyMicroPage-pay-type img.c-wechat-icon {
  height: 18px;
}
.c-buyMicroPage-pay-amount {
  color: #999;
  font-size: 12px;
}
.c-buyMicroPage-pay-amount .c-amount-icon {
  color: #f75b64;
  font-family: DINOT;
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
}
.c-buyMicroPage-pay-amount .c-buyMicroPage-total-amount {
  color: #f75b64;
  font-family: DINOT;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
}

/* 未绑定手机或微信时的提示信息模块 */
.c-buyMicroPage-bind-box {
  margin-top: 28px;
  box-sizing: border-box;
  width: 100%;
  padding: 48px 28px;
  height: 221px;
  background-color: #fff;
  text-align: left;
}
.c-buyMicroPage-bind-title {
  font-size: 14px;
  font-weight: bold;
}
.c-buyMicroPage-bind-desc {
  margin-top: 4px;
  font-size: 14px;
  line-height: 22px;
}
.c-buyMicroPage-bind-desc .c-buyMicroPage-bold {
  font-weight: bold;
  font-size: 15px;
}
.c-buyMicroPage-bind-btns {
  text-align: right;
  width: 100%;
  margin-top: 12px;
  padding-right: 24px;
  box-sizing: border-box;
}
.c-buyMicroPage-bind-btn {
  color: #fff;
  display: inline-block;
  background-color: #04bdb2;
  border-radius: 4px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  width: 100px;
  cursor: pointer;
  font-size: 14px;
}
.c-buyMicroPage-bind-btn:hover {
  background-color: #03c7ba;
}
.c-buyMicroPage-bind-link {
  color: #03c7ba;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
}
.bind-phone-dialog-content {
  width: 100% !important;
  height: 100%;
  background-color: unset !important;
}
.c-buyMicroPage-bind-phone-box {
  width: 100%;
  height: 100%;
}
.c-buyMicroPage-bind-phone-box > iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/*!***************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/buyMicroPage/css/buySuccess.css ***!
  \***************************************************************************************/
.c-buymicro-success {
  border-radius: 20px;
  background: linear-gradient(180deg, #313333 0%, #212121 100%), #fff;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.12);
  position: relative;
  padding: 48px 0 32px;
  box-sizing: border-box;
}
.c-buymicro-success-bg {
  position: absolute;
  top: 9px;
  right: 0px;
}
.c-buymicro-success-title {
  color: #c7fff7;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  padding-left: 40px;
}
.c-buymicro-success-title .c-success-bold {
  font-weight: 700;
}
.c-buymicro-success-title .c-success-bold font {
  color: #51f7e5;
}
.c-buymicro-success-devide {
  margin-top: 40px;
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.c-buymicro-success-devide .c-success-devide-text {
  color: #51f7e5;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.c-buymicro-success-devide img {
  width: 69px;
}
.c-buymicro-success .c-buyMicroPage-vip-fun {
  background: none;
  padding: 0 30px;
  margin-top: 26px;
  color: #c7fff7;
}
.c-buymicro-success-blue {
  box-sizing: border-box;
  width: 300px;
  margin: 54px auto 0;
  text-align: center;
  height: 56px;
  line-height: 56px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(120.04deg, #2dfdd8 -9.98%, #04bdb2 57.7%);
  border-radius: 28px;
}
.c-buymicro-success-blue:hover {
  background: linear-gradient(120.04deg, #2dfdd8 -9.98%, #04bdb2 57.7%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
}

/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/login/css/login.css ***!
  \***************************************************************************/
.c-yz-login-iframe-box {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2000;
  top: 0;
  left: 0;
  border: none;
}

/*!*****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/sharePopover/css/sharePopover.css ***!
  \*****************************************************************************************/
.c-share-popover {
  position: relative;
  padding: 10px;
}
.c-share-pop-qrcode-box {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  gap: 48px;
}
.c-share-pop-qr-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.c-share-pop-qr-title {
  font-size: 12px;
  color: #333940;
  line-height: 24px;
}
.c-share-pop-qr-code {
  width: 150px;
  height: 150px;
}
.c-share-pop-qr-tabs {
  display: flex;
  gap: 12px;
}
.c-share-pop-switch-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-share-pop-switch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 24px;
  font-size: 12px;
  border: 1px solid #eee;
  cursor: pointer;
  color: #999;
}

.c-share-pop-switch-btn .c-share-pop-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.c-share-pop-switch-btn.c-share-pop-left {
  border-radius: 12px 0px 0px 12px;
  border-right: none;
}

.c-share-pop-switch-btn.c-share-pop-left .c-share-pop-icon {
  background-position: -143px -252px;
}

.c-share-pop-switch-btn.c-share-pop-right {
  border-radius: 0px 12px 12px 0px;
}

.c-share-pop-switch-btn.c-share-pop-right .c-share-pop-icon {
  background-position: -185px -252px;
}

.c-share-pop-switch-btn.active,
.c-share-pop-switch-btn:hover {
  color: #333;
}

.c-share-pop-switch-btn.c-share-pop-left.active .c-share-pop-icon,
.c-share-pop-switch-btn.c-share-pop-left:hover .c-share-pop-icon {
  background-position: -120px -252px;
}

.c-share-pop-switch-btn.c-share-pop-right.active .c-share-pop-icon,
.c-share-pop-switch-btn.c-share-pop-right:hover .c-share-pop-icon {
  background-position: -166px -252px;
}
.c-share-pop-copyLinkArea {
  margin-top: 20px;
  font-size: 13px;
}

.c-share-pop-text {
  position: absolute;
  box-sizing: border-box;
  color: #666;
  background: #f7f7f9;
  border-right: none;
  height: 34px;
  line-height: 34px;
  border-radius: 4px 0 0 4px;
  text-align: center;
  width: 84px;
  left: 1px;
  top: 1px;
}

.c-share-pop-linkInput {
  position: relative;
}

.c-share-pop-input {
  border-radius: 4px;
  padding: 0 96px;
  color: #999;
  overflow: hidden;
  width: 100%;
  height: 36px;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
}

.c-share-pop-input:focus,
.c-share-pop-input:active {
  outline: none;
  border: 1px solid #0076fe;
}

.c-share-pop-operate {
  color: #0076fe;
  position: absolute;
  height: 32px;
  line-height: 32px;
  right: 0px;
  top: 2px;
}

.c-share-pop-link {
  color: #0076fe;
  display: inline-block;
  padding: 0 8px;
  vertical-align: middle;
  text-decoration: none;
}

.c-share-pop-copyBtn {
  cursor: pointer;
  display: inline-block;
  padding: 0 8px;
  vertical-align: middle;
}

.c-share-pop-devide {
  display: inline-block;
  border-left: 1px solid #eaeaea;
  height: 20px;
  vertical-align: middle;
}
.c-share-pop-share-container {
  margin-top: 20px;
  text-align: left;
}
.c-share-pop-share-title {
  font-size: 12px;
  color: #333940;
  line-height: 24px;
}
.c-share-pop-share-wrapper {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-share-pop-share-list {
  display: flex;
  gap: 16px;
  align-items: center;
}
.c-share-pop-share-item {
  width: 32px;
  height: 32px;
}
.c-share-pop-share-item img {
  width: 100%;
  height: 100%;
}
.c-share-pop-support-popover {
  padding: 20px 0px;
}
.c-share-pop-support-step {
  display: inline-block;
  padding: 0 32px;
  vertical-align: top;
}
.c-share-pop-support-text {
  line-height: 18px;
  color: #0076fe;
  text-align: center;
}
.c-share-pop-help-trigger {
  font-size: 12px;
  color: #0076fe;
  cursor: pointer;
}

